python open mat file

31

python open mat file -

import scipy.io
mat = scipy.io.loadmat('file.mat')

open mat file in python -

#!python
#!/usr/bin/env python
from scipy.io import loadmat
x = loadmat('test.mat')
lon = x['lon']
lat = x['lat']
# one-liner to read a single variable
lon = loadmat('test.mat')['lon']

read .mat file in python -

import h5py
with h5py.File('test.mat', 'r') as file:
    print(list(file.keys()))

read .mat file in python -

with h5py.File('test.mat', 'r') as file:
    a = list(file['a'])

Comments

Submit
0 Comments